home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / DYNIX.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  765b  |  36 lines

  1.  
  2. /********************************************
  3. dynix.h
  4.  
  5. This is a source file for mawk, an implementation of
  6. the AWK programming language.
  7.  
  8. Mawk is distributed without warranty under the terms of
  9. the GNU General Public License, version 2, 1991.
  10. ********************************************/
  11.  
  12.  
  13. /*
  14.  * should work on any Sequent running Final DYNIX
  15.  */
  16.  
  17. #ifndef  CONFIG_H
  18. #define  CONFIG_H    1
  19.  
  20. #define      HAVE_STRTOD        0
  21. #define      HAVE_FMOD        0
  22. #define   vfprintf(s,f,a)    _doprnt(f,a,s)
  23. #define   FPE_TRAPS_ON        1
  24. #define      HAVE_MATHERR        0
  25. #include  <sys/types.h>
  26. #include  <machine/fpu.h>
  27. #define   FPE_ZERODIVIDE   FPE_FLTDIV_TRAP
  28. #define   FPE_OVERFLOW     FPE_FLTOVF_TRAP
  29.  
  30. extern char *strchr();
  31.  
  32. #include "config/Idefault.h"
  33.  
  34. #endif
  35.  
  36.